home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Essentials / MacApp Documentation / MacApp.TECH$ Archives / 1990 / May 90 / MacApp.Tech$ 5⁄18⁄90 / 1292-Re MPW Pascal to TP3-May90 < prev    next >
Encoding:
Text File  |  1991-03-06  |  818 b   |  27 lines  |  [TEXT/GEOL]

  1. Item    9125471                         14-May-90        18:17PDT
  2.  
  3. From:   MOOF                            Rollin, Keith A
  4.  
  5. To:     MACAPP.TECH$                    MacApp Technical
  6.  
  7. Sub:    RE>MPW Pascal to TP3 Expe
  8.  
  9. Attn: Icon Technology UK,IDV
  10. SentBy: Keith Rollin
  11.         Reply to:   RE>MPW Pascal to TP3 Experienc
  12. > (not a big loss, because the performance of the program using the MacApp
  13. > debugger was lousey).
  14.  
  15. This is usually due to the fact that running method discipline slows down
  16. method calls a lot. By turning this off with the following command in your
  17. program's initialization routines, you can get your debug versions to run a
  18. lot faster:
  19.  
  20.            IF qDebug & DisciplineMethodCalls(FALSE) THEN;
  21.  
  22. You can also toggle this setting with the XD command sequence in MacApp's
  23. debugger.
  24.  
  25. - Keith
  26.  
  27.